In the event of technical difficulties with Szkopuł, please contact us via email at szkopul@fri.edu.pl.
If you would like to talk about tasks, solutions or technical problems, please visit our Discord servers. They are moderated by the community, but members of the support team are also active there.
Byteasar travels from Bitingham to Byteburg. He wants to visit some must-see sites along the way, including some interesting monuments, fine restaurants, and numerous other tourist attractions. The order, which he visits the places in, is not entirely unimportant. For example, Byteasar would rather not climb the peaky tower of the Bitfork Castle right after a lavish dinner in Digitest, and, likewise, he would drop in to Zip City (called by some Sip City) for a cup of the famous Compresso coffee after dinner, rather than before. Luckily, his tour is, to some extent, flexible and he can choose between some orders. As a result of horrendous petrol prices, he'd like to follow the shortest possible route, for economy's sake. Be a good friend and help him determine the length of the shortest path that meets his requirements.
The system of roads consists of sites and
roads connecting them. The sites are numbered from
to
,
and so are the roads (from
to
). Each road links a pair of different sites and is bidirectional. Different roads
meet only at sites (which are their endpoints) and do not cross outside the sites, thanks to a clever system of
flyovers and tunnels. Each road has a certain length. A pair of sites can be connected directly by at most one
road, though there can be many paths consisting of at least two direct roads between them.
Let denote the number of sites Byteasar wants to visit. Bitingham has number
in the numbering,
Byteburg has number
, and the sites Byteasar wants to visit have numbers
.
An exemplary system of roads is shown in the figure. Suppose Byteasar wants to visit the sites 2, 3, 4 and 5, and he would like to visit 2 before 3, and 4 and 5 after 3. Then the shortest route leads through sites 1, 2, 4, 3, 4, 5, 8 and its length is 19.
Note that the site 4 appears on the route both before and after the site 3. It is perfectly OK and means that Byteasar will not stop there before visiting site 3, since his requirements disallow it. He is, however, allowed to pass through the site 4 without stopping before visiting the site 3 - and this is exactly what he is going to do!
Write a programme that:
In the first line of the standard input there are three integers ,
and
, separated by single spaces,
,
,
; furthermore, inequality
holds.
The following lines contain the descriptions of the roads, exactly one in each line. The
'th line
contains three integers
,
and
, separated by single spaces,
,
.These numbers
denote a road linking the sites
and
of length
. You can safely assume that for each set of test data it is
possible to get from Bitingham to Byteburg and each of the sites Byteasar wants to visit.
In the 'th line there is one integer
,
.
It is the number of restrictions regarding the
order in which Byteasar wants to visit the sites of his selection. These restrictions are given in the following
lines, one in each line. The
'th line contains two integers
and
separated by a single space,
,
,
.
The pair
and
means that Byteasar wants to visit the site
before
visiting the site
. It does not, however, prevent him from passing through
before visiting
nor passing
through
after having visited
. He is free to do so, as long as he does not stop by and visit the tourist
attractions. It is guaranteed that for each set of test data at least one order of visiting the selected sites while
satisfying all the restrictions exists.
In the first and only line of the standard output one integer should be written, i.e. the length of the shortest path from Bitingham to Byteburg passing in a proper order through all the sites Byteasar has selected.
For the input data:
8 15 4 1 2 3 1 3 4 1 4 4 1 6 2 1 7 3 2 3 6 2 4 2 2 5 2 3 4 3 3 6 3 3 8 6 4 5 2 4 8 6 5 7 4 5 8 6 3 2 3 3 4 3 5
the correct result is:
19
The figure and clarification for the example are in the task description.
Task author: Zbigniew Czech.